
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
The arr-diff npm package is used to compute the difference between one or more arrays, returning an array that contains the values from the first array that are not present in the other arrays.
Basic array difference
This feature allows you to find the elements that are present in the first array but not in the subsequent arrays. The code sample demonstrates how to use arr-diff to filter out the numbers 2 and 4 from the array [1, 2, 3, 4, 5], resulting in [1, 3, 5].
[1, 2, 3, 4, 5].filter(arrDiff([2, 4]))
Multiple array difference
This feature is used to find the difference between one array and multiple other arrays. The code sample shows how to use arr-diff to filter out the numbers 2, 3, 4, and 5 from the array [1, 2, 3, 4, 5], resulting in [1].
[1, 2, 3, 4, 5].filter(arrDiff([2, 3], [4, 5]))
Lodash's difference function is similar to arr-diff. It creates an array of array values not included in the other given arrays using SameValueZero for equality comparisons. Lodash is a more extensive utility library that includes a wide range of functions for different purposes.
Underscore.js is a utility library that offers the _.difference function, which is similar to arr-diff's functionality. It returns the values from the first array that are not present in the other arrays. Underscore.js provides a more comprehensive set of utility functions beyond array manipulation.
Ramda is a functional programming library that includes a difference function, which behaves similarly to arr-diff. It focuses on a more functional programming approach and offers a suite of tools for this paradigm.
Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
Install with npm
$ npm i arr-diff --save
Install with bower
$ bower install arr-diff --save
Return the difference between the first array and additional arrays.
Params
a
{Array}b
{Array}returns
{Array}Example
var diff = require('arr-diff');
var a = ['a', 'b', 'c', 'd'];
var b = ['b', 'c'];
console.log(diff(a, b))
//=> ['a', 'd']
Install dev dependencies:
$ npm i -d && npm test
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Jon Schlinkert
Copyright © 2015 Jon Schlinkert Released under the MIT license.
This file was generated by verb on Sat Dec 05 2015 23:24:53 GMT-0500 (EST).
FAQs
Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
The npm package arr-diff receives a total of 20,809,569 weekly downloads. As such, arr-diff popularity was classified as popular.
We found that arr-diff demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.